home *** CD-ROM | disk | FTP | other *** search
- // Design Time Java Socket implementation. (HPP)
-
- #ifndef _DTJINET11_HPP
- #define _DTJINET11_HPP
-
- #include "dtjobjct11.hpp"
-
- class METAEXPORTCLASSDEF DTJInternet11 : public DTJObject11
- {
- public:
- DTJInternet11( const MetaObject * pMetaObj );
- virtual ~DTJInternet11();
-
- virtual void GenerateCode( MMCodeGeneration mmCodeGen,
- ostream& src,
- MMCodeGenerationParms& parms );
-
- virtual WBool SetServerPort( WLong port );
-
- virtual WLong GetServerPort() const;
-
- protected:
-
- WLong _server_port;
- };
-
- extern WBool METAEXPORTDEF DP_JInetServerPort( const DTObject *, const MMBaseProperty * );
-
- // needed for mdreader
- typedef DTJInternet11 DTpowersoft__dot__powerj__dot__net__dot__Internet__dot__11;
-
- #endif // _DTJINET11_HPP
-